Welcome![Sign In][Sign Up]
Location:
Search - des ecb cbc

Search list

[Crack Hackdes

Description: 使用DES算法;可以指定使用DES、2DES或者3DES算法;可以对任意的文件进行加密和解密,加密后文件扩展名为.des,可以指定使用ECB,CBC,CFB,OFB,CTR的任意一种模式;
Platform: | Size: 60361 | Author: huqiuping | Hits:

[Crack HackDES for VB

Description: 本程序封装了一个加解密模块. 使用时直接调用其中的函数即可.- This procedure has sealed a Canadian decipher module When use directly transfers function then
Platform: | Size: 27648 | Author: Panbingjin | Hits:

[OtherTripleDes算法de实现

Description: 之前,我在一个项目开发过程中,涉及到了TripleDes的算法,在实现过程中,我也参考了论坛现有的关于3DES的代码,发现大部分的代码在算法的实现上不够严谨,或者小有偏差,特别是对3DES的两种模式:ECB,CBC都罕有涉及。此版本提供的TripleDes可以实现3DES在两种模式下的2key/3key的加、解密。在速度优化和内存控制上都做了优化。-Before, I in a project development process, involving the TripleDES algorithms, in the realization of the process, I also made reference to a forum on the existing 3DES code and found that most of the code in the algorithm for the realization of loosely, or small deviations, especially for 3DES of two modes: ECB, CBC are rarely involved. This version provided by TripleDES 3DES can be achieved in two modes of 2key/3key increases, decryption. Optimized in terms of speed and memory control are optimized.
Platform: | Size: 7168 | Author: 无可厚非 | Hits:

[OS programkenel_crypto

Description: 内核加解密算法 加解密函数库及其使用说明,详见附件。 find_cipher_by_name中参数ciphername可取的值为下面的组合,对应不同的模式: (des,des_ede3,aes,blowfish,cast5,dfc,idea,mars,rc5,rc6,serpent,twofish)-ecb (des,des_ede3,aes,blowfish,cast5,dfc,idea,mars,rc5,rc6,serpent,twofish)-cbc (des,des_ede3,aes,blowfish,cast5,dfc,idea,mars,rc6,serpent,twofish)-cfb struct cipher_implementation* ci中对应的可调用的method:encrypt_iv decrypt_iv encrypt decrypt 比如以des-cbc为find_cipher_by_name的参数得到的ci调用encrypt_iv,decrypt_iv. find_digest_by_name中参数digestname可取的值: sha1 md5 struct digest_implementation* di中对应的可调用的method:open update digest close hmac 计算digest时调用di->digest,计算hmac时调用di->hmac. 注意:加载我们需要的cipher-*.o和digest-*.o之前需先加载cryptoapi.o。 -core encryption and decryption algorithm encryption and decryption functions and their use, as detailed in the annex. Find_cipher_by_name cipher desirable parameter values to the following portfolio, dealing with different modes : (des, des_ede3, Aes, blowfish, cast5, DFC, the idea, mars, RC5, production, serpent, twofish)- ecb ( des, des_ede3, Aes, blowfish, cast5, DFC, the idea, mars, RC5, production, serpent, twofish)- cbc (des, des_ede3, Aes, blowfish, cast5, DFC, the idea, mars, production, the serpent , twofish)- Sample struct cipher_implementation ci* corresponding the available method : encrypt_iv decrypt_iv encrypt decrypt such as a des-cbc find_cipher_by_name parameters for the ci call encrypt_iv, decrypt_iv. find_digest_by_name digestname desirable parameter values : sha1 md
Platform: | Size: 139264 | Author: xf | Hits:

[Crack Hackdes3_ECBandCBC

Description: 这是一个DES加解密的C程序。其中实现了一重DES、三重DES、DES的两种工作模式:ECB和CBC。-This is a DES encryption and decryption of the C program. With an emphasis on the realization of DES, Triple DES, DES two operating modes : ECB and the CBC.
Platform: | Size: 34816 | Author: 宋亚平 | Hits:

[Crack HackDESandCBC

Description: DES算法,包含有标准DES算法以及CBC,ECB模式,编译用VC++.-DES algorithm, includes standard DES algorithm and CBC, ECB mode, compile VC.
Platform: | Size: 87040 | Author: 谢志东 | Hits:

[Crack HackDES_BMP

Description: 利用DES算法(包括ECB和CBC模式)加解密BMP图像-using DES algorithm (including the ECB and the CBC mode) encryption BMP images
Platform: | Size: 301056 | Author: pouch | Hits:

[Crack Hackdes

Description: 使用DES算法;可以指定使用DES、2DES或者3DES算法;可以对任意的文件进行加密和解密,加密后文件扩展名为.des,可以指定使用ECB,CBC,CFB,OFB,CTR的任意一种模式; -The use of DES algorithm can specify the use of DES, 2DES or 3DES algorithm can arbitrary file encryption and decryption, encryption, named after the file extension. Des, you can specify the use of ECB, CBC, CFB, OFB, CTR arbitrary a model
Platform: | Size: 60416 | Author: huqiuping | Hits:

[Crack Hackdes_1

Description: 实现des加密的功能,包括有des的基本代码,以及ecb、cbc两种加密功能!没有界面~-Des realize the function of encryption, including des have the basic code, and the ecb, cbc two encryption! No interface ~
Platform: | Size: 260096 | Author: 李海峰 | Hits:

[Crack HackDESdemo

Description: 自己编写的DES加密/解密完整源程序, Windows界面.是用VC6MFC编写的.包括ECB和CBC两种模式.-I have written DES encryption/decryption complete source code, Windows interface. VC6MFC is prepared. Including the ECB and CBC mode.
Platform: | Size: 58368 | Author: | Hits:

[File FormatAES_DES_Workmode

Description: 对称/分组密码一般分为流加密(如OFB、CFB等)和块加密(如ECB、CBC等)。对于流加密,需要将分组密码转化为流模式工作。对于块加密(或称分组加密),如果要加密超过块大小的数据,就需要涉及填充和链加密模式,文中提到的ECB和CBC等就是指链加密模式。 本文将要介绍了AES对称加密/分组加密/流密码及其ECB、CBC、CFB、OFB和CTR五种对称加密模式。-Symmetric/block ciphers are generally divided into stream encryption (eg, OFB, CFB, etc.) and block encryption (such as ECB, CBC, etc.). For streaming encryption, block cipher needs to be translated into the work flow model. The encryption block (or block cipher), If you want to encrypt the data block size more than on the need to involve filling and chain encryption mode, the text referred to, such as ECB and CBC encryption mode refers chain. This paper will be introduced the AES symmetric encryption/packet encryption/stream cipher and the ECB, CBC, CFB, OFB and CTR mode in five symmetric encryption.
Platform: | Size: 382976 | Author: 王纪 | Hits:

[CA authDES

Description: DES的加密算法,基于五种方式的实现,分别是CBC,ECB,CFB,OFB,CTR-DES encryption algorithm, based on the realization of five ways, namely CBC, ECB, CFB, OFB, CTR
Platform: | Size: 58368 | Author: 白风 | Hits:

[Crack Hackdes-cbc

Description: des的C语言版本,带自检程序。ecb模式实现。-des of the C language version, with self-test procedures
Platform: | Size: 207872 | Author: snail | Hits:

[Crack Hackdes

Description: DES加密解密的实现,可以分别输入明文与密文,还可以选择ecb/cbc/cfb/ofb等工作模式,以及NoPadding和Pkcs5Padding等填充模式-DES encryption and decryption implementations can input plaintext and ciphertext ecb/cbc/cfb/ofb work mode, you can also choose to fill mode NoPadding and Pkcs5Padding
Platform: | Size: 8192 | Author: chen | Hits:

[Crack HackDES

Description: 可以实现CBC和ECB的DES加密解密算法的matlab程序- A matlab program which can decrypt and crypt the DES algorithm in CBC and ECB mode
Platform: | Size: 8192 | Author: 赵昊宸 | Hits:

[Crack HackDES

Description: DES加密源码,cbc ecb模式,强力推荐-DES encryption source code, cbc ecb mode, strongly recommended
Platform: | Size: 12288 | Author: jack | Hits:

[CA authdes

Description: DES/3DES 算法实现,支持ECB CBC OFB等模式-DES/3DES algorithm
Platform: | Size: 8192 | Author: 哦大家 | Hits:

[Otherecb+cbc+des

Description: 应用ECB和CBC两种操作模式分别完成DES(Two modes of operation, ECB and CBC, are applied to complete the DES)
Platform: | Size: 265216 | Author: wzt11 | Hits:

[Crack HackDES

Description: 该DES加密器实现了一重DES的五种加密模式,即ECB、CBC、CFB、OFB、CRT。 为了减小文件长度,已删除了Debug目录,解压缩后可以自行编译生成。(The DES encrypt implements five encryption modes of a heavy DES, namely, ECB, CBC, CFB, OFB, and CRT. In order to reduce the length of the file, the Debug directory has been deleted, and it can be compiled and generated by itself after the decompression.)
Platform: | Size: 57344 | Author: 曦凡 | Hits:

[OtherDES_AES_For_ASP_VBScript

Description: asp版AES加密解密源代码,模式:ECB/CBC 默认:ECB 填充:PKCS5/NONE/ZERO 默认:PKCS5 编码:GK2312/UTF-8(Function: implementation of DES standard encryption algorithm with VBScript)
Platform: | Size: 21504 | Author: 第期 | Hits:
« 12 »

CodeBus www.codebus.net